.conteneur-flexible{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    align-content: space-around;
    background-color: #0AD; /*Bleu*/
    width: 100%;
    height: 200px;
    border: 2px solid blue;
    box-sizing: border-box;
    margin: 20px 0px;
}
.ligne{
    flex-direction: row; 
	/*Axe principal = axe horizontal*/
}
.colonne{
    flex-direction: column; 
	/*Axe principal = axe vertical*/
}

.element-flexible{
    flex: 1 1 50px;
    width: 40%;
    height: 40%;
    background-color: #0DA; /*Vert*/
    border: 2px solid green;
    box-sizing: border-box;
    margin: 10px;
	/*tester aussi avec 0px*/
}